aboutsummaryrefslogtreecommitdiffstats
path: root/perl-file-tail [moved to community]/-watch-
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-07-29 22:00:37 +0200
committerMattias Andrée <maandree@kth.se>2021-07-29 22:00:37 +0200
commitcb48d6ebf6df5208779a1995ab62179938139cb4 (patch)
treefd7ecf738d672c01cb2f3a1e0462573f26a93dd0 /perl-file-tail [moved to community]/-watch-
parentUpdate mongoclock (diff)
downloadaur-packages-cb48d6ebf6df5208779a1995ab62179938139cb4.tar.gz
aur-packages-cb48d6ebf6df5208779a1995ab62179938139cb4.tar.bz2
aur-packages-cb48d6ebf6df5208779a1995ab62179938139cb4.tar.xz
Remove old packages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'perl-file-tail [moved to community]/-watch-')
-rwxr-xr-xperl-file-tail [moved to community]/-watch-21
1 files changed, 0 insertions, 21 deletions
diff --git a/perl-file-tail [moved to community]/-watch- b/perl-file-tail [moved to community]/-watch-
deleted file mode 100755
index 2f81b76..0000000
--- a/perl-file-tail [moved to community]/-watch-
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-[ -f file-tail ] && rm file-tail
-
-wget 'http://search.cpan.org/~mgrabnar/File-Tail-0.99.3/Tail.pm' -O file-tail >/dev/null 2>/dev/null
-
-if [ $? = 0 ]; then
- [ -f unfetchable ] && rm unfetchable
- grep 'Module Version:' < file-tail | md5sum > new-sum
- touch sum
- if [ "$(cat sum)" = "$(cat new-sum)" ]; then
- rm new-sum
- else
- mv new-sum sum
- echo 'perl-file-tail'
- fi
-elif [ ! -f unfetchable ]; then
- touch unfetchable
- echo 'perl-file-tail (unfetchable)'
-fi
-